home *** CD-ROM | disk | FTP | other *** search
/ PLAYymate for OS/2 / Playmate for OS2.iso / p4os2035 / bio next >
Text File  |  1989-02-14  |  625b  |  35 lines

  1. # Makefile for BIOrhythm program
  2. # Created by Microsoft Corporation, 1989
  3. #
  4.  
  5. # Abbreviations
  6. #
  7. CC    =    cl -c -AM -G2s -W3 -Zpei
  8. LF    =    /align:16 /codeview /map /NOD
  9. OBJS    =    bio.obj biocmd.obj biopaint.obj wndproc.obj
  10.  
  11. # Inference Rules
  12. #
  13. .c.obj:
  14.     $(CC) $*.c
  15.  
  16. .rc.res:
  17.     rc -r $*.rc
  18.  
  19. # Dependencies
  20. #
  21. bio.res:    bio bio.h bio.ico bio.rc
  22.  
  23. bio.obj:    bio bio.c bio.h
  24.  
  25. biocmd.obj:    bio bio.h biocmd.c
  26.  
  27. biopaint.obj:    bio bio.h biopaint.c
  28.  
  29. wndproc.obj:    bio bio.h wndproc.c
  30.  
  31. bio.exe:    bio $(OBJS) bio.res bio.def
  32.     link $(LF) $(OBJS), bio.exe, bio.map, mlibce os2, bio.def
  33.     rc bio.res
  34.     mapsym bio
  35.